home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2005 November / Game.EXE_11_2005_DVD.iso / Flash Games / Robo Farmer / robofarmer.swf / scripts / DefineButton2_748 / BUTTONCONDACTION on(press).as next >
Encoding:
Text File  |  2005-09-23  |  233 b   |  14 lines

  1. on(press){
  2.    if(_root.money <= 149)
  3.    {
  4.       return undefined;
  5.    }
  6.    if(_root.money >= 150)
  7.    {
  8.       _root.money -= 150;
  9.       _root.armorpoints += 10;
  10.       _root.sndglass.start();
  11.       return undefined;
  12.    }
  13. }
  14.